* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: "Lato", sans-serif;
    background-color: #f7f8fa;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
    color: #777;
    padding: 30px;
  }

  .admission-process{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 30px;
    
  }

  table,th,td {
    border: 1px solid black;
    border-radius: 10px;
    padding: 10px;
    text-align: left;
  }

  .admission-details{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 30px;
    text-align: center;
  }

  tr:nth-child(even) {
    background-color: #f2f2f2;
  }